Notifikasi

INSTANT WEB AI

Dari Ide Bisnis Jadi Website

Masuk ke Akun

Gunakan akun demo bawaan untuk langsung eksplorasi.

Akun Demo: admin / 123 V1 Active
INSTANT WEB AI
AI Website Generator

Buat website profesional dalam hitungan menit.

Dari ide bisnis jadi landing page berkelas, siap publish ke Cloudflare / GitHub Pages lengkap dengan integrasi WhatsApp otomatis.

Project Saya

Kelola dan update landing page buatan bisnismu

${proj.businessName} Hubungi Kami
${proj.category}

${proj.data.heroHeadline}

${proj.data.heroSub}

${proj.data.heroCta}

${proj.data.aboutHeadline}

${proj.data.aboutSub}

Kenapa Memilih Kami?

  • ✓ Ditangani tim profesional berpengalaman
  • ✓ Standar kebersihan dan peralatan teruji
  • ✓ Respon cepat via WhatsApp langsung

${proj.data.servicesHeadline}

${proj.data.servicesSub}

Konsultasi Intensif

Pemeriksaan menyeluruh dengan diagnosa tepat sesuai kebutuhan Anda.

Treatment Unggulan

Prosedur modern dengan kenyamanan maksimal dan hasil terbukti.

Paket Perawatan Rumah

Dukungan produk harian praktis untuk menjaga hasil terbaik.

${proj.data.faqHeadline}

${proj.data.faqSub}

Bagaimana cara reservasi jadwal konsultasi?

Cukup klik tombol chat WhatsApp kami dan tim CS akan langsung mengatur jadwal terbaik untuk Anda.

Apakah produk dan layanan ini aman?

Seluruh prosedur dan produk telah melewati uji keamanan dan sertifikasi resmi.

${proj.data.contactHeadline}

${proj.data.contactSub}

Buka di WhatsApp Resmi (${proj.waNumber})
`; } function renderLiveIframe() { const html = generateFullStaticHtml(currentEditingProject); const iframe = document.getElementById("previewIframe"); iframe.srcdoc = html; } /* ================================================================= EXPORT & DOWNLOAD ENGINES (HTML & STANDALONE ZIP) ================================================================= */ function downloadSingleHtml() { const htmlContent = generateFullStaticHtml(currentEditingProject); const blob = new Blob([htmlContent], { type: "text/html;charset=utf-8" }); const url = URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; a.download = `${currentEditingProject.businessName.toLowerCase().replace(/[^a-z0-9]/g, '-')}-index.html`; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); showToast("Single HTML berhasil diunduh!", "success"); } function downloadZipPackage() { if (typeof JSZip === "undefined") { showToast("Library JSZip sedang dimuat, coba sesaat lagi.", "error"); return; } const zip = new JSZip(); const htmlContent = generateFullStaticHtml(currentEditingProject); const readmeContent = `================================================ ${currentEditingProject.businessName.toUpperCase()} — LANDING PAGE Generated by INSTANT WEB AI Tanggal: ${new Date().toLocaleDateString('id-ID')} ================================================ PANDUAN PUBLIKASI WEBSITE: 1. Buka folder ini di komputer kamu. 2. Kamu bisa langsung klik ganda 'index.html' untuk membukanya di browser. 3. Untuk rilis online gratis tanpa coding: - GitHub Pages: Buat repo baru di github.com, upload file index.html ini, lalu aktifkan GitHub Pages di Settings > Pages. - Cloudflare Pages: Login ke dash.cloudflare.com, buka Workers & Pages > Create application > Pages > Upload assets, lalu drag & drop folder ini. Website ini 100% statis, cepat, dan siap menerima leads pelanggan ke WhatsApp kamu!`; zip.file("index.html", htmlContent); zip.file("README.txt", readmeContent); zip.generateAsync({ type: "blob" }).then(function(content) { const url = URL.createObjectURL(content); const a = document.createElement("a"); a.href = url; a.download = `${currentEditingProject.businessName.toLowerCase().replace(/[^a-z0-9]/g, '-')}-website.zip`; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); showToast("ZIP Website lengkap berhasil diunduh!", "success"); }); } /* ================================================================= GAS CLOUD SYNC PROTOCOL (OPTIMISTIC) ================================================================= */ function saveProjectToCloud() { showToast("Menyimpan project ke server...", "info"); if (PREVIEW_MODE) { setTimeout(() => { showToast("Project tersimpan di mode Preview!", "success"); }, 600); return; } fetch(APP_URL, { method: "POST", mode: "cors", headers: { "Content-Type": "text/plain" }, body: JSON.stringify({ action: "updateProject", project: currentEditingProject }) }) .then(res => res.json()) .then(res => { if (res.status === "success") { showToast("Project tersimpan di Google Sheets!", "success"); } else { showToast("Gagal menyimpan: " + res.message, "error"); } }) .catch(err => { showToast("Tidak dapat terhubung ke server Google Apps Script", "error"); }); } /* PLACEHOLDER: JS_BARU */